home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PWAEMC13.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-02-27  |  997b  |  43 lines

  1. @echo off
  2. rem
  3. rem -------------------------------------------------------------------------
  4. rem Enhanced Message Edit Commands v1.3 by Drew [PWA]
  5. rem -------------------------------------------------------------------------
  6. rem
  7. if .%1==. goto help
  8. if .%2==. goto help
  9. if not exist %1 goto help
  10.  
  11. mkpcbtxt %1 /i:163  "!%2\EMEC.PPE"
  12. mkpcbtxt %1 /i:164  " "
  13. mkpcbtxt %1 /i:222  "!%2\EMEC.PPE"
  14. mkpcbtxt %1 /i:629  " "
  15. goto done
  16.  
  17.  
  18. :help
  19. cls
  20. echo.
  21. echo To install Enhanced End of Message, use the following syntax:
  22. echo.
  23. echo        install PCBTEXT PPEDIR
  24. echo.
  25. echo        PCBTEXT is the full pathname of your PCBTEXT file.
  26. echo.
  27. echo        PPEDIR is the directory of where EMEC is located.
  28. echo.
  29. echo Example:
  30. echo.
  31. echo        install C:\PCB\GEN\PCBTEXT C:\PPE\EMEC
  32. echo.
  33. pause
  34.  
  35. :done
  36. echo.
  37. echo Enhanced Message Edit Commands v1.3 by Drew [PWA]
  38. echo.
  39. echo Gawd I hate batch files.  T/csh-shell scripts would have been so
  40. echo much nicer. :)   --Drew
  41. echo.
  42.  
  43.